npm WARN play@1.0.0 No repository field.
"private": true
"repository": {
"type": "git",
"url": "git://github.com/username/repository.git"
}
Works
{TestLab} = require('./test-lab');
Does Not Work
{TestLab} = require('/test-lab');
Does Not Work
{TestLab} = require('test-lab');
}
Say you have separate projects module S (source) and module C (client). A and C live in different project directories. If debugging mehod S.foo.go() from module C, then we need to open S.foo and set a breakpoint in method go(). }